home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
graphics
/
cadpipe3.arj
/
CADPIPE.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-06-30
|
3KB
|
51 lines
@echo off
:start
cls
echo ╔═════════════════════════════════════════════════════════════════════╗
echo ║ CADPIPE HVAC Demo Disk ║
echo ╠═════════════════════════════════════════════════════════════════════╣
echo ║ ║
echo ║ Welcome to the CADPIPE HVAC demo disk. ║
echo ║ ║
echo ║ In order to run the demo, you must have a VGA monitor with at ║
echo ║ least 640x480 resolution. If you are not sure of the resolution ║
echo ║ of your monitor, try to run the demo and you will be given an ║
echo ║ error message if your monitor's resolution is less than required. ║
echo ║ ║
echo ║ ║
echo ║ Please select an option below: ║
echo ║ ║
echo ║ 1. Run the CADPIPE HVAC demo program ║
echo ║ ║
echo ║ 2. Exit ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════════════╝
getkey1
if errorlevel 50 goto :end
if errorlevel 49 goto :one
if errorlevel 1 goto :start
:one
cls
echo ╔═════════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ The CADPIPE HVAC demo will now be run. ║
echo ║ ║
echo ║ This demo uses: ║
echo ║ IBM Story Teller program (ST.EXE) ║
echo ║ (C) Copyright IBM Corp. 1985, 1986, 1987, 1989 ║
echo ║ All Rights Reserved ║
echo ║ ║
echo ║ While the story is in process, use the PAUSE key or the F10 key ║
echo ║ to pause the presentation. Use any other key to resume the ║
echo ║ presentation. Press ESC at any time to abort the presentation. ║
echo ║ ║
echo ║ ║
echo ║ Hit any key to continue Hit Ctrl-C to abort ║
echo ╚═════════════════════════════════════════════════════════════════════╝
pause > nul
call rundemo
goto :start
:end